home *** CD-ROM | disk | FTP | other *** search
/ QuickTime 2.0 Developer Kit / QuickTime 2.0 Developer Kit.iso / mac / MAC / Programming Stuff / Interfaces / CIncludes / OSAComp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-11  |  1.7 KB  |  75 lines  |  [TEXT/MPS ]

  1. /*
  2.      File:        OSAComp.h
  3.  
  4.      Copyright:    © 1984-1994 by Apple Computer, Inc.
  5.                  All rights reserved.
  6.  
  7.      Version:    Universal Interfaces 2.0a3  ETO #16, MPW prerelease.  Friday, November 11, 1994. 
  8.  
  9.      Bugs?:        If you find a problem with this file, send the file and version
  10.                  information (from above) and the problem description to:
  11.  
  12.                      Internet:    apple.bugs@applelink.apple.com
  13.                      AppleLink:    APPLE.BUGS
  14.  
  15. */
  16.  
  17. #ifndef __OSACOMP__
  18. #define __OSACOMP__
  19.  
  20.  
  21. #ifndef __APPLEEVENTS__
  22. #include <AppleEvents.h>
  23. #endif
  24. /*    #include <Errors.h>                                            */
  25. /*        #include <ConditionalMacros.h>                            */
  26. /*    #include <Types.h>                                            */
  27. /*    #include <Memory.h>                                            */
  28. /*        #include <MixedMode.h>                                    */
  29. /*    #include <OSUtils.h>                                        */
  30. /*    #include <Events.h>                                            */
  31. /*        #include <Quickdraw.h>                                    */
  32. /*            #include <QuickdrawText.h>                            */
  33. /*    #include <EPPC.h>                                            */
  34. /*        #include <PPCToolbox.h>                                    */
  35. /*            #include <AppleTalk.h>                                */
  36. /*        #include <Processes.h>                                    */
  37. /*            #include <Files.h>                                    */
  38. /*    #include <Notification.h>                                    */
  39.  
  40. #ifndef __OSA__
  41. #include <OSA.h>
  42. #endif
  43. /*    #include <AEObjects.h>                                        */
  44. /*    #include <Components.h>                                        */
  45.  
  46. #ifdef __cplusplus
  47. extern "C" {
  48. #endif
  49.  
  50. #if GENERATINGPOWERPC
  51. #pragma options align=mac68k
  52. #endif
  53.  
  54. #ifdef __CFM68K__
  55. #pragma lib_export on
  56. #endif
  57.  
  58. extern pascal OSErr OSAGetStorageType(Handle scriptData, DescType *dscType);
  59. extern pascal OSErr OSAAddStorageType(Handle scriptData, DescType dscType);
  60. extern pascal OSErr OSARemoveStorageType(Handle scriptData);
  61.  
  62. #ifdef __CFM68K__
  63. #pragma lib_export off
  64. #endif
  65.  
  66. #if GENERATINGPOWERPC
  67. #pragma options align=reset
  68. #endif
  69.  
  70. #ifdef __cplusplus
  71. }
  72. #endif
  73.  
  74. #endif /* __OSACOMP__ */
  75.